home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / multitasking / feature / executive_v2.10 / executiveapi / smakefile < prev   
Makefile  |  2000-03-02  |  514b  |  25 lines

  1. #
  2. # SAS/C makefile for ExecutiveAPI/Example
  3. #
  4. # This file is public domain.
  5. #
  6. # Author: Petri Nordlund <petrin@megabaud.fi>
  7. #
  8. # $Id: smakefile 1.1 1996/09/05 23:20:18 petrin Exp petrin $
  9. #
  10.  
  11. #DEBUG     = DEBUG=SYMBOLFLUSH
  12. DEBUG     =
  13.  
  14. CFLAGS    = PARAMETERS=REGISTERS NOSTACKCHECK STRINGMERGE NOCHECKABORT \
  15.             NOMULTIPLEINCLUDES SMALLCODE SMALLDATA $(DEBUG)
  16.  
  17. Example: Example.o
  18.    sc link $(CFLAGS) Example.o
  19.  
  20. Example.o: Example.c
  21.    sc $(CFLAGS) Example.c
  22.  
  23. clean:
  24.    delete Example Example.lnk Example.o
  25.